revision:
The <legend> tag defines a caption for the <fieldset> element. The <legend> element is used to add a caption to a group of related form <input> elements that have been grouped together into a <fieldset>.
It provides titles for form sections, providing a nice alternative to the "headline" elements. The titles are designed to be used with the "fieldset" element, and (strictly speaking) should only be used inside of one. Organizing form fields into "fieldset" groups, with appropriate "legend" captions can help make complicated forms more attractive and easier to use.
<legend> . . . </legend>
hrCodes:
<form style="margin-left: 4vw;" action="/action_page.php"> <fieldset> <legend>Personalia:</legend> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname"><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email"><br><br> <label for="birthday">Birthday:</label> <input type="date" id="birthday" name="birthday"><br><br> <input type="submit" value="Submit"> </fieldset> </form>
Codes:
<form style="margin-left: 4vw;" action="/action_page.php"> <fieldset> <legend style="float:right">Personalia:</legend><br> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname"><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email"><br><br> <label for="birthday">Birthday:</label> <input type="date" id="birthday" name="birthday"><br><br> <input type="submit" value="Submit"> </fieldset> </form>